home *** CD-ROM | disk | FTP | other *** search
- on qTidle
- -- Dir passes control here when it knows of no other event
-
- -- Here are some idle event notes:
- -- o This gets called before the QT movie starts, with time ~671-709???
- -- o This gets called when the QT movie ends and loops until it is stopped
-
- global DEBUG
- global DEBUG_IDLE
-
- global gPlayBtnSprite
-
- set DEBUG = 0
- set DEBUG_IDLE = 0
-
- -- Move the thumb
- if (gPlayBtnSprite) then
- moveThumb
- end if
-
- end qTidle
-
- ------------------------------------------------------------------------
- on valueTester tBack
-
- global DEBUG
-
- if DEBUG then put "-- Value tester:"
- if floatP(tBack) then
- if DEBUG then
- put "float:" && tBack
- end if
- else if integerP(tBack) then
- if DEBUG then
- put "int:" && tBack
- end if
- else if objectP(tBack) then
- if DEBUG then
- put "object:" && tBack
- end if
- else if stringP(tBack) then
- if DEBUG then
- put "string:" && tBack
- end if
- else if symbolP(tBack) then
- if DEBUG then
- put "symbol:" && tBack
- end if
- else
- if DEBUG then
- put "unidentified:" && tBack
- end if
- end if
- -- if DEBUG then put "-- Value tester end --"
- end valueTester
-
-